home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 4: GNU Archives / Linux Cubed Series 4 - GNU Archives.iso / gnu / binutils.7 / binutils / binutils-2.7 / gas / testsuite / lib / dostriptest < prev    next >
Encoding:
Text File  |  1996-07-04  |  111 b   |  15 lines

  1. #!/bin/sh
  2.  
  3. x=striptest.xx.$$
  4. y=striptest.yy.$$
  5.  
  6. cp $1 $x
  7. strip $x
  8. cp $2 $y
  9. strip $y
  10.  
  11. doobjcmp $x $y
  12. exit
  13.  
  14. #eof
  15.